/* Alexandre Theme - Redesign Beekeeping */

/* --- Variables & Colors --- */
:root {
	--primary-color: #FFA000;
	/* Honey Gold */
	--primary-dark: #FF6F00;
	/* Darker Honey */
	--secondary-color: #333333;
	/* Dark Grey */
	--text-color: #444444;
	--bg-color: #FAFAFA;
	/* Soft White */
	--link-color: #E65100;
	--white: #FFFFFF;
}

body {
	background-color: var(--bg-color);
	color: var(--text-color);
	font-family: 'Outfit', 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
	padding-top: 100px;
	/* Offset for fixed header */
}

a {
	color: var(--link-color);
	text-decoration: none;
	transition: color 0.3s ease;
}

a:hover {
	color: var(--primary-dark);
}

/* --- Layout Improvements --- */
.container {
	max-width: 1200px;
	margin: 0 auto;
	padding: 0 1rem;
}

/* --- Header & Navigation --- */
.header {
	background-color: var(--white);
	border-bottom: 2px solid var(--primary-color);
	padding: 1rem 0;
	box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
}

.header.sticky {
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	z-index: 1000;
}

.logo h1 {
	font-family: 'Dancing Script', cursive;
	color: var(--secondary-color);
	font-weight: 700;
	font-size: 3.5rem;
	/* Slightly larger */
	letter-spacing: -0.5px;
	line-height: 1.1;
	margin-bottom: 0.5rem;
}

.logo h1 a {
	color: var(--secondary-color) !important;
	text-decoration: none;
}

.logo h2 {
	font-family: 'Dancing Script', cursive;
	color: var(--primary-color);
	/* Brighter orange */
	font-weight: 400;
	font-size: 1.5rem;
	/* Larger for this font style */
	text-transform: none;
	letter-spacing: 0;
	margin-top: 5px !important;
	/* More space */
	display: block;
}

/* --- Responsive Adjustments --- */
@media screen and (max-width: 768px) {
	.logo h1 {
		font-size: 2.5rem;
	}

	.logo h2 {
		font-size: 1.2rem;
	}
}

@media screen and (max-width: 480px) {
	.logo h1 {
		font-size: 2rem;
	}

	.logo h2 {
		font-size: 1rem;
	}
}

/* --- Navigation Menu (if exists) --- */
.nav {
	display: flex;
	gap: 1.5rem;
}

.nav li a {
	color: var(--secondary-color);
	font-weight: 500;
	padding: 0.5rem;
	border-radius: 4px;
}

.nav li a:hover,
.nav li a.active {
	background-color: var(--primary-color);
	color: var(--white);
}

/* --- Hero Section --- */
.hero {
	background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
	color: var(--white);
	padding: 4rem 1rem;
	text-align: center;
	margin-bottom: 2rem;
	border-radius: 0 0 8px 8px;
	/* Slight curve at bottom */
}

.hero h2 {
	font-size: 2.5rem;
	margin-bottom: 0.5rem;
	text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.2);
}

.hero p.subtitle {
	font-size: 1.25rem;
	margin-bottom: 2rem;
	opacity: 0.9;
}

/* --- Buttons --- */
.btn-cta {
	display: inline-block;
	background-color: var(--secondary-color);
	color: var(--white);
	padding: 0.8rem 2rem;
	font-size: 1.1rem;
	font-weight: bold;
	border-radius: 50px;
	box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
	transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.btn-cta:hover {
	background-color: #000;
	color: var(--primary-color);
	transform: translateY(-2px);
	box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
}

/* --- Standard Articles --- */
.article {
	background: var(--white);
	padding: 2rem;
	margin-bottom: 2rem;
	border-radius: 8px;
	box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
	border-left: 5px solid var(--primary-color);
}

.article header h2 {
	color: var(--secondary-color);
}

/* --- Sidebar --- */
.aside h3 {
	color: var(--primary-dark);
	border-bottom: 1px solid var(--primary-color);
	padding-bottom: 0.5rem;
	margin-top: 2rem;
}

.aside ul li a {
	color: var(--text-color);
	display: block;
	padding: 0.3rem 0;
}

.aside ul li a:hover {
	color: var(--primary-color);
	padding-left: 5px;
	/* Subtle movement */
}

/* --- Footer --- */
.footer {
	background-color: var(--secondary-color);
	color: #ccc;
	padding: 2rem 0;
	margin-top: 3rem;
	text-align: center;
}

.footer a {
	color: var(--primary-color);
}

/* --- Homepage Sections --- */
.section-title {
	text-align: center;
	color: var(--secondary-color);
	font-size: 2rem;
	margin-bottom: 2rem;
	position: relative;
	padding-bottom: 1rem;
}

.section-title::after {
	content: '';
	display: block;
	width: 60px;
	height: 3px;
	background-color: var(--primary-color);
	margin: 10px auto 0;
}

/* Features Grid */
.features-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
	gap: 2rem;
	margin-bottom: 4rem;
	text-align: center;
}

.feature-item {
	background: var(--white);
	padding: 2rem;
	border-radius: 8px;
	box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
	transition: transform 0.3s ease;
	border-top: 4px solid var(--primary-color);
}

.feature-item:hover {
	transform: translateY(-5px);
}

.feature-icon {
	font-size: 3rem;
	color: var(--primary-color);
	margin-bottom: 1rem;
	display: block;
}

.feature-item h3 {
	color: var(--secondary-color);
	margin-bottom: 1rem;
}

/* About Section */
.about-section {
	background-color: var(--white);
	padding: 3rem;
	border-radius: 8px;
	margin-bottom: 4rem;
	display: flex;
	flex-wrap: wrap;
	gap: 2rem;
	align-items: center;
	box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}

.about-text {
	flex: 1 1 300px;
}

.about-text p {
	line-height: 1.6;
	margin-bottom: 1rem;
}

.about-image {
	flex: 1 1 200px;
	text-align: center;
	background-color: #eee;
	/* Placeholder */
	min-height: 200px;
	display: flex;
	align-items: center;
	justify-content: center;
	border-radius: 8px;
	color: #999;
}

/* --- Boutique / Product Grid --- */
.product-grid {
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
	gap: 2rem;
	margin-top: 2rem;
}

.product-card {
	background: var(--white);
	border-radius: 8px;
	box-shadow: 0 4px 8px rgba(0, 0, 0, 0.06);
	transition: transform 0.3s ease, box-shadow 0.3s ease;
	display: flex;
	flex-direction: column;
	overflow: hidden;
	border: 1px solid #eee;
}

.product-card:hover {
	transform: translateY(-5px);
	box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
	border-color: var(--primary-color);
}

.product-img {
	height: 200px;
	background-color: #f9f9f9;
	overflow: hidden;
	display: flex;
	align-items: center;
	justify-content: center;
}

.product-img img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 0.5s ease;
}

.product-card:hover .product-img img {
	transform: scale(1.05);
}

.product-body {
	padding: 1.5rem;
	display: flex;
	flex-direction: column;
	flex-grow: 1;
}

.product-title {
	font-size: 1.5rem;
	/* Same as breadcrumb */
	margin-bottom: 0.5rem;
	color: var(--primary-dark);
	/* Same as sidebar headings */
	font-weight: 700;
}

.product-title a {
	color: inherit;
}

.product-desc {
	flex-grow: 1;
	font-size: 0.95rem;
	color: #666;
	margin-bottom: 1.5rem;
}

.product-action {
	text-align: center;
}

.btn-small {
	padding: 0.5rem 1.5rem;
	font-size: 1rem;
}

/* --- Background Image Container --- */
.bg {
	position: fixed;
	top: 0;
	left: 0;
	width: 100vw;
	height: 100vh;
	z-index: -1;
	background-image: url('../img/background.jpg');
	background-size: 100% 100%;
	/* Force the whole image to fit the screen */
	background-position: center;
	background-repeat: no-repeat;
	opacity: 0.3;
	/* More visible as requested */
	filter: blur(1px);
	/* Less blur to see details */
}

/* Add a subtle overlay to ensure content readability */
body::before {
	content: '';
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: radial-gradient(circle, rgba(250, 250, 250, 0.7) 0%, rgba(250, 250, 250, 0.9) 100%);
	z-index: -1;
}